21451
14725
J'ai généré un modèle à partir de cette base de données:
[ID] int IDENTITY (1,1) NOT NULL
, [Prenume] nvarchar (100) NULL
, [Nume] nvarchar (100) NULL
ALTER TABLE [voluntari] ADD CONSTRAINT [PK_voluntari] PRIMARY KEY ([ID]);
ALLER
CRÉER UN INDEX UNIQUE [UQ__voluntari__0000000000000042] ON [voluntari] ([NrLeg] ASC);
ALLER
Les classes générées sont:
public classe partielle voluntari
{
public int ID {get; ensemble; }
chaîne publique Prenume {get; ensemble; }
chaîne publique Nume {get; ensemble; }
}
et
classe partielle publique ValuntariEntities: DbContext
{
public ValuntariEntities ()
: base ("name = ValuntariEntities")
{
}
protected override void OnModelCreating (DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException ();
}
public DbSet  voluntaris {get; ensemble; }
}
Le code utilisé pour insérer un objet dans la base de données est:
Gestiune_Voluntari.ValuntariEntities ve = new ValuntariEntities ();
voluntari v = nouveau voluntari ();
v.Nume = "Ion";
v.Prenume = "ion";
ve.voluntaris.Add (v);
ve.SaveChanges ();
Dans la table de base de données, je ne peux insérer qu'un seul objet. Si j'exécute le code ci-dessus, cela ne fonctionne qu'une fois, si j'essaie d'insérer d'autres valeurs ne fonctionne pas et j'obtiens cette erreur:
Une erreur s'est produite lors de la mise à jour des entrées. Voir l'exception interne pour plus de détails.
à System.Data.Entity.Internal.InternalContext.SaveChanges ()
à System.Data.Entity.Internal.LazyInternalContext.SaveChanges ()
à System.Data.Entity.DbContext.SaveChanges ()
à Gestiune_Voluntari.MainWindow.Button_Click (Expéditeur de l'objet, RoutedEventArgs e) dans c: \ Users \ Florin \ Documents \ Proiecte programare \ Gestiunevoluntari \ Gestiune Voluntari \ Gestiune Voluntari \ MainWindow.xaml.cs: ligne 35
à System.Windows.RoutedEventHandlerInfo.InvokeHandler (Object target, RoutedEventArgs routedEventArgs)
à System.Windows.EventRoute.InvokeHandlersImpl (Object source, RoutedEventArgs args, Boolean reRaised)
à System.Windows.UIElement.RaiseEventImpl (expéditeur de l'objet DependencyObject, arguments RoutedEventArgs)
à System.Windows.UIElement.RaiseEvent (RoutedEventArgs e)
à System.Windows.Controls.Primitives.ButtonBase.OnClick ()
à System.Windows.Controls.Button.OnClick ()
à System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp (MouseButtonEventArgs e)
à System.Windows.UIElement.OnMouseLeftButtonUpThunk (Expéditeur d'objet, MouseButtonEventArgs e)
à System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler (Delegate genericHandler, Object genericTarget)
à System.Windows.RoutedEventArgs.InvokeHandler (gestionnaire de délégués, cible d'objet)
à System.Windows.RoutedEventHandlerInfo.InvokeHandler (Object target, RoutedEventArgs routedEventArgs)
à System.Windows.EventRoute.InvokeHandlersImpl (Object source, RoutedEventArgs args, Boolean reRaised)
à System.Windows.UIElement.ReRaiseEventAs (expéditeur de DependencyObject, Args RoutedEventArgs, RoutedEvent newEvent)
à System.Windows.UIElement.OnMouseUpThunk (expéditeur d'objet, MouseButtonEventArgs e)
à System.Windows.Input.MouseButtonEventArgs.InvokeEventHandler (Delegate genericHandler, Object genericTarget)
à System.Windows.RoutedEventArgs.InvokeHandler (gestionnaire de délégués, cible d'objet)
à System.Windows.RoutedEventHandlerInfo.InvokeHandler (Object target, RoutedEventArgs routedEventArgs)
à System.Windows.EventRoute.InvokeHandlersImpl (Object source, RoutedEventArgs args, Boolean reRaised)
à System.Windows.UIElement.RaiseEventImpl (expéditeur de l'objet DependencyObject, arguments RoutedEventArgs)
à System.Windows.UIElement.RaiseTrustedEvent (Arguments RoutedEventArgs)
à System.Windows.UIElement.RaiseEvent (Args RoutedEventArgs, Boolean de confiance)
à System.Windows.Input.InputManager.ProcessStagingArea ()
à System.Windows.Input.InputManager.ProcessInput (entrée InputEventArgs)
à System.Windows.Input.InputProviderSite.ReportInput (InputReport inputReport)
à System.Windows.Interop.HwndMouseInputProvider.ReportInput (IntPtr hwnd, mode InputMode, horodatage Int32, actions RawMouseActions, Int32 x, Int32 y, roue Int32)
à System.Windows.Interop.HwndMouseInputProvider.FilterMessage (IntPtr hwnd, WindowMessage msg, IntPtr wParam, IntPtr lParam, Boolean & managed)
à System.Windows.Interop.HwndSource.InputFilterMessage (IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean & managed)
à MS.Win32.HwndWrapper.WndProc (IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean et géré)
à MS.Win32.HwndSubclass.DispatcherCallbackOperation (Object o)
à System.Windows.Threading.ExceptionWrapper.InternalRealCall (rappel de délégué, object args, Int32 numArgs)
à MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen (Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
à System.Windows.Threading.Dispatcher.LegacyInvokeImpl (DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
à MS.Win32.HwndSubclass.SubclassWndProc (IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
à MS.Win32.UnsafeNativeMethods.DispatchMessage (MSG et msg)
à System.Windows.Threading.Dispatcher.PushFrameImpl (DispatcherFrameCadre)
à System.Windows.Threading.Dispatcher.PushFrame (cadre DispatcherFrame)
à System.Windows.Threading.Dispatcher.Run ()
à System.Windows.Application.RunDispatcher (Object ignorer)
à System.Windows.Application.RunInternal (fenêtre Fenêtre)
à System.Windows.Application.Run (fenêtre Fenêtre)
à System.Windows.Application.Run ()
à Gestiune_Voluntari.App.Main () dans c: \ Users \ Florin \ Documents \ Proiecte programare \ Gestiunevoluntari \ Gestiune Voluntari \ Gestiune Voluntari \ obj \ Debug \ App.g.cs: ligne 0
à System.AppDomain._nExecuteAssembly (assembly RuntimeAssembly, String [] args)
à System.AppDomain.ExecuteAssembly (String assemblyFile, Evidence assemblySecurity, String [] args)
à Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly ()
à System.Threading.ThreadHelper.ThreadStart_Context (état de l'objet)
à System.Threading.ExecutionContext.RunInternal (ExecutionContext executionContext, ContextCallback callback, Object state, Boolean PreserveSyncCtx)
à System.Threading.ExecutionContext.Run (ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
à System.Threading.ExecutionContext.Run (ExecutionContext executionContext, rappel de ContextCallback, état de l'objet)
à System.Threading.ThreadHelper.ThreadStart ()
L'exception interne est:
Une valeur dupliquée ne peut pas être insérée dans un index unique. [Nom de la table = voluntari, Nom de la contrainte = UQ__voluntari__0000000000000042]
la source est:
Fournisseur de données SQL Server Compact ADO.NET
Cela ne fonctionne pas même si je spécifie manuellement un ID pour l'objet qui n'est pas utilisé dans la table. Le seul cas où cela fonctionne est lorsque le tableau est vide.
Merci!
MISE À JOUR:
Le problème était une autre colonne définie comme clé unique. Je l'ai oublié. 
Je pense que le problème réside dans votre base de données à cause de cette ligne:
[ID] int IDENTITY (1,1) NOT NULL
Je m'attendrais à ce que ce soit:
[ID] int IDENTITY
Avec le (1,1), vous pourriez appeler la (fonction) IDENTITY au lieu de la propriété IDENTITY
|
Votre Réponse
StackExchange.ifUsing ("éditeur", fonction () {
StackExchange.using ("externalEditor", function () {
StackExchange.using ("extraits", function () {
StackExchange.snippets.init ();
});
});
}, "extraits de code");
StackExchange.ready (fonction () {
var channelOptions = {
tags: "" .split (""),
id: "1"
};
initTagRenderer ("". split (""), "" .split (""), channelOptions);
StackExchange.using ("externalEditor", function () {
// Doit lancer l'éditeur après les extraits, si les extraits sont activés
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using ("extraits", function () {
createEditor ();
});
}
autre {
createEditor ();
}
});
function createEditor () {
StackExchange.prepareEditor ({
useStacksEditor: faux,
heartbeatType: 'réponse',
autoActivateHeartbeat: faux,
convertImagesToLinks: vrai,
noModals: vrai,
showLowRepImageUploadWarning: vrai,
reputationToPostImages: 10,
bindNavPrevention: vrai,
suffixe: "",
imageUploader: {
brandingHtml: "Powered by \ u003ca href = \" https: //imgur.com/ \ "\ u003e \ u003csvg class = \" svg-icon \ "width = \" 50 \ "height = \" 18 \ "viewBox = \ "0 0 50 18 \" fill = \ "none \" xmlns = \ "http: //www.w3.org/2000/svg \" \ u003e \ u003cpath d = \ "M46.1709 9.17788C46.1709 8.26454 46.2665 7.94324 47.1084 7.58816C47.4091 7.46349 47.7169 7.36433 48.0099 7.26993C48.9099 6.97997 49.672 6.73443 49.672 5.93063C49.672 5.22043 48.9832 4.61182 48.1414 4.61182C47.4335 4.61182 46.72554.9762.6943 4.61182C47.4335 4.61182 46.72554.91628 46.094 4.69.4335 4.61182 46.72554.91628 46.094.49.48.4335 4.61182 46.7256 4.9762.692 43.1481 6.59048V11.9512C43.1481 13.2535 43.6264 13.8962 44.6595 13.8962C45.6924 13.8962 46.1709 13.2535 46.1709 11.9512V9.17788Z \ "/ \ u003e \ u003cpath d = \" M32.492 10.1419C32.492 12.6954.0 34184.01448.0 14.6954.0 34184.0 34184.0 14.6954.0 34184.0 14484.0 14.6954.0 34184.0 14484.0 41,5985 12,6954 41,5985 10,1419V6,59049C41,5985 5,28821 41,1394 4,66232 40,1061 4,66232C39,0732 4,66232 38,5948 5,28821 38,5948 6,59049V9,60062C38,5948 10,8521 38,2696 11,5455 37,0451 11,4455,5C35,820 521 35.4954 9.60062V6.59049C35.4954 5.28821 35.0173 4.66232 34.0034 4.66232C32.9703 4.66232 32.492 5.28821 32.492 6.59049V10.1419Z \ "/ \ u003e \ u003cpath fill-rule = \" evenodd \ "clip-rule = \" evenodd \ "clip-rule = \" evenodd \ "d. = \ "M25.6622 17.6335C27.8049 17.6335 29.3739 16.9402 30.2537 15.6379C30.8468 14.7755 30.9615 13.5579 30.9615 11.9512V6.59049C30.9615 5.28821 30.4833 4.66231 29.4502 4.66231C28.993 15.6379C30.8468 14.7755 30.9615 13.5579 30.9615 11.9512V6.59049C30.9615 5.28821 30.4833 4.66231 29.4502 4.66231C28.993.509 4.66231 29.4502 4.66231C28.993.505 4.66231 29.4502 4.66231C28.993.505 4.66231 29.4502 4.66231C28.993.505 4.66231 29.4502 4.66231C28.993.505 4.66231 29.4502 4.66231C28.993.505 4.66231 29.4502 4.66231C28.993.505 4.66231 29.4502 4.66231C28.993.50C .1369 4.56087 21.0134 6.57349 21.0134 9.27932C21.0134 11.9852 23.003 13.913 25.3754 13.913C26.5612 13.913 27.4607 13.4902 28.1109 12.6616C28.1109 12.7229 28.1161 12.7799 28.121 12.8341.832C 12.7799 28.121 12.8341.830C 12.7799 28.121 12.8341.830C 28.1161 12.7799 28.121 12.8341.830C 12.1161 12.7799 28.121 12.8341.830C 12.1161 12.7799 28.121 12.8341.8304.1256.28.1256 12.7799 28.121 12.8341.285 12.8341.285 12.7799 28.121 25.121 15.2321 24.1352 14.9821 23.5661 14.7787C23.176 14.6393 22.8472 14.5218 22.5437 14.5218C21.7977 14.5218 21.2429 15.0123 21.2429 15.6887C21.2429 16.7375 22.9072 17.6393 22.8472 14.5218 22.5437 14.5218C21.7977 14.5218 21.2429 15.0123 21.2429 15.6887C21.2429 16.7375 22.9072 17.6335 25.6622 17.6335 7.0247 7.02417.6335 25.6622 17.6335 7,0177,0247,0249,2179,2177,024 27.2119 7.09766 28.0918 7.94324 28.0918 9.27932C28.0918 10.6321 27.2311 11.5116 26.1024 11.5116C24.9737 11.5116 24.1317 10.6491 24.1317 9.27932Z \ "/ \ u003e \ u003cpath d = \" M16.802965 11.9512C16.28.80 19. 5.00066 5.28821 5.00066 6.59049V11.9512C5.00066 13.2535 5.47873 13.8962 6.51203 13.8962C7.54479 13.8962 8.0232 13.2535 8.0232 11.9512V8.90741C8.0232 7.58817 8.44431 6.91179 9.53458 6.91179C10.51093 13.8962C7.54479 13.8962 8.0232 13.2535 8.0232 11.9512V8.90741C8.0232 7.58817 8.44431 6.91179 9.53458 6.91179C10.51093 6.91179 9.53458 6.91179C10.51093 6.91179 9.53458 6.91179C10.51093 6.91179.94.45.8 6.91179C10.51093 6.91179 9.53458 6.91179C10.51093 6.91179.94.458 6.91179C10.51093 6.91179 9.53458 6.91179C10.51093 6.91179.959.89.93 8.91179.851093 13.8119.89359 13.8117.89 C13.4375 13.8962 13.9157 13.2535 13.9157 11.9512V8.90741C13.9157 7.58817 14.3365 6.91179 15.4269 6.91179C16.4027 6.91179 16.8045 7.58817 16.8045 8.94108V11.9512Z \ "/ \ u003e \ u003cpath d = \ "M3.31675 6,59049C3.31675 5,28821 2,83866 4,66232 1,82471 4,66232C0,791758 4,66232 0,313354 5,28821 0,313354 6,59049V11,9512C0,313354 13,2535 0,791758 13,8962 1,82471 13,8962C2,85798 13,8962 1,82471 13,8962C2,85798 13,891262 3,3165,316,59 u003e \ u003cpath d = \ "M1.87209 0.400291C0.843612 0.400291 0 1.1159 0 1.98861C0 2.87869 0.822846 3.57676 1.87209 3.57676C2.90056 3.57676 3.7234 2.87869 3.7234 1.98861C3.7234 \ 1.1159 2.90056 0.400B de remplissage = 0.400B \ "/ \ u003e \ u003c / svg \ u003e \ u003c / a \ u003e",
contentPolicyHtml: "Contributions des utilisateurs sous licence \ u003ca href = \" https: //stackoverflow.com/help/licensing \ "\ u003ecc by-sa \ u003c / a \ u003e \ u003cahref = \ "https: //stackoverflow.com/legal/content-policy \" \ u003e (politique de contenu) \ u003c / a \ u003e ",
allowUrls: vrai
},
onDemand: vrai,
discardSelector: ".discard-answer"
, immédiatementShowMarkdownHelp: true, enableTables: true, enableSnippets: true
});
}
});
Merci d'avoir répondu à Stack Overflow!
Veuillez vous assurer de répondre à la question. Fournissez des détails et partagez vos recherches!
Mais évitez…
Demander de l'aide, des éclaircissements ou répondre à d'autres réponses.
Faire des déclarations basées sur des opinions; les sauvegarder avec des références ou une expérience personnelle.
Pour en savoir plus, consultez nos conseils sur la rédaction de bonnes réponses.
Brouillon enregistré
Brouillon rejeté
Inscrivez-vous ou connectez-vous
StackExchange.ready (fonction () {
StackExchange.helpers.onClickDraftSave ('# login-link');
});
Inscrivez-vous avec Google
Inscrivez-vous via Facebook
Inscrivez-vous par e-mail et mot de passe
Soumettre
Publier en tant qu'invité
Nom
Email
Obligatoire, mais jamais affiché
StackExchange.ready (
fonction () {
StackExchange.openid.initPostLogin ('. New-post-login', 'https% 3a% 2f% 2fstackoverflow.com% 2fquestions% 2f24570706% 2fc-sharp-ef-can-insert-only-one-item% 23new-answer' , 'question_page');
}
);
Publier en tant qu'invité
Nom
Email
Obligatoire, mais jamais affiché
Publiez votre réponse
Jeter
En cliquant sur «Publier votre réponse», vous acceptez nos conditions d'utilisation, notre politique de confidentialité et notre politique de cookies
Ce n'est pas la réponse que vous recherchez? Parcourez les autres questions marquées c # entity-framework insert sql-server-ce ou posez votre propre question.